DataCollection | ComponentOne
C1.iOS.DataCollection Assembly / C1.iOS.DataCollection Namespace / C1TableViewSource<T> Class / GetItemCell Method
The table view.
Location of the row where the cell will be displayed.
The data item.

In This Topic
    GetItemCell Method (C1TableViewSource<T>)
    In This Topic
    Gets the visual element representing an item.
    Syntax
    'Declaration
     
    Public Overridable Function GetItemCell( _
       ByVal tableView As UIKit.UITableView, _
       ByVal indexPath As Foundation.NSIndexPath, _
       ByVal item As T _
    ) As UIKit.UITableViewCell
    public virtual UIKit.UITableViewCell GetItemCell( 
       UIKit.UITableView tableView,
       Foundation.NSIndexPath indexPath,
       T item
    )

    Parameters

    tableView
    The table view.
    indexPath
    Location of the row where the cell will be displayed.
    item
    The data item.
    See Also